fix: Don't return inputBuf if input is of type PDF #377
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull request checklist:
CHANGELOG.md
was updated, if applicableDescription
Related to #374.
I have a maxThumbnailSize that is very high, which means that libvips default sizing for PDFs is within the limit, which is allowing this
if
check to return early:api/pkg/thumbnail/thumbnail.go
Lines 53 to 57 in 67a1371
That early return of the inputBuf makes this happen:
Which definitely isn't intentional.
This PR adds an additional conditional to the
if
check and moves some things around to make theformat
variable work without crashing if image errors out. (Calling image.Format() when previousimage, err := ...
fails crashes the software, I learned.)Images
Before:
After:
And yes, I have thumbnails set to size 900 in Chatterino.